Mudar cor do fundo

W3.CSS Códigos.
Mudar cor da página.
<body bgcolor="Cor aqui"></body>
<body bgcolor="#000000"></body>
<body bgcolor="black"></body>

Mudar cor do texto.
Cor do texto
<FONT COLOR="Cor aqui">Cor do texto</FONT>
<FONT COLOR="red">Cor do texto</FONT>
<FONT COLOR="#ff0000">Cor do texto</FONT>

  • Fonte dessa pagina, . fica mudando a cor da página

  • <!DOCTYPE html>
    <html>
    <head>
    <style>
    body {
    -webkit-animation: colorchange 60s infinite;
    animation: colorchange 60s infinite;
    }
    @-webkit-keyframes colorchange {
    0% {background: #fffb00;}
    25% {background: #2bff00}
    50% {background: #00fffb}
    75% {background: #ff1900}
    100% {background: #fffb00;}
    }
    @keyframes colorchange {
    0% {background: #fffb00;}
    25% {background: #2bff00}
    50% {background: #00fffb}
    75% {background: #ff1900}
    100% {background: #fffb00;}
    }
    </style>
    </head>
    <body>
    </body>
    </html>

  • Cores html no google .